阴影

为视图添加阴影效果。可设置颜色、模糊半径以及偏移量。

类型

1shadow?: {
2  color: Color
3  radius: number
4  x?: number
5  y?: number
6}

示例

1<Text
2  shadow={{
3    color: "black",
4    radius: 5,
5    x: 2,
6    y: 4
7  }}
8>
9  有阴影的文字
10</Text>